home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / SecalDemo / Inc / prefs / icontrol.inc < prev    next >
Encoding:
Text File  |  1997-06-11  |  543 b   |  27 lines

  1. include "inc/exec/types.inc";
  2. include "inc/libraries/iffparse.inc";
  3.  
  4. struct IControlPrefs is
  5.   ic_Reserved[4]:long;
  6.   ic_TimeOut:uword;
  7.   ic_MetaDrag:word;
  8.   ic_Flags:ulong;
  9.   ic_WBtoFront:ubyte;
  10.   ic_FrontToBack:ubyte;
  11.   ic_ReqTrue:ubyte;
  12.   ic_ReqFalse:ubyte;
  13. ;
  14.  
  15. def ICB_COERCE_COLORS = 0;
  16. def ICB_COERCE_LACE = 1;
  17. def ICB_STRGAD_FILTER = 2;
  18. def ICB_MENUSNAP = 3;
  19. def ICB_MODEPROMOTE = 4;
  20.  
  21. def ICF_COERCE_COLORS = (1<<0);
  22. def ICF_COERCE_LACE = (1<<1);
  23. def ICF_STRGAD_FILTER = (1<<2);
  24. def ICF_MENUSNAP = (1<<3);
  25. def ICF_MODEPROMOTE = (1<<4);
  26.  
  27.